ReadOneToManyKeyValueRepo

interface ReadOneToManyKeyValueRepo<Key, Value> : Repo

Functions

contains
Link copied to clipboard
common
abstract suspend fun contains(k: Key): Boolean
abstract suspend fun contains(k: Key, v: Value): Boolean
count
Link copied to clipboard
common
abstract suspend fun count(): Long
abstract suspend fun count(k: Key): Long
get
Link copied to clipboard
common
abstract suspend fun get(k: Key, pagination: Pagination, reversed: Boolean = false): PaginationResult<Value>
getAll
Link copied to clipboard
common
open suspend fun getAll(reverseLists: Boolean = false): Map<Key, List<Value>>

WARNING!!! THIS METHOD PROBABLY IS NOT EFFICIENT, USE WITH CAUTION

open suspend fun getAll(k: Key, reversed: Boolean = false): List<Value>
keys
Link copied to clipboard
common
abstract suspend fun keys(pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>
abstract suspend fun keys(v: Value, pagination: Pagination, reversed: Boolean = false): PaginationResult<Key>

Inheritors

ReadKeyValuesCacheRepo
Link copied to clipboard
OneToManyKeyValueRepo
Link copied to clipboard
MapReadOneToManyKeyValueRepo
Link copied to clipboard
MapOneToManyKeyValueRepo
Link copied to clipboard
MapperReadOneToManyKeyValueRepo
Link copied to clipboard
MapperOneToManyKeyValueRepo
Link copied to clipboard
KtorOneToManyKeyValueRepo
Link copied to clipboard
KtorReadOneToManyKeyValueRepo
Link copied to clipboard
ExposedReadOneToManyKeyValueRepo
Link copied to clipboard

Extensions

withMapper
Link copied to clipboard
inline fun <FromKey, FromValue, ToKey, ToValue> ReadOneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadOneToManyKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadOneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadOneToManyKeyValueRepo<FromKey, FromValue>
inline fun <FromKey, FromValue, ToKey, ToValue> ReadOneToManyKeyValueRepo<ToKey, ToValue>.withMapper(crossinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, crossinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, crossinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, crossinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadOneToManyKeyValueRepo<FromKey, FromValue>